Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632084 Views

Latest files of /cody/vishal-dcode/Movie App

app.js cody/vishal-dcode/Movie App/app.js
4 Views
0 Comments
const API_URL = "https://api.themoviedb.org/3/discover/movie?sort_by=popularity.desc&api_key=fbad8df4b02baab6a32feb0b32c03a47&page=1";
const IMG_PATH = "https://image.tmdb.org/t/p/w1280";
const SEARCH_API = "https://api.themoviedb.org/3/search/movie?api_key=fbad8df4b02baab6a32feb0b32c03a47&query=''";

const main = document.getElementById("main");
const form = document.getElementById("form");
const search = document.getElementById("search");

style.css cody/vishal-dcode/Movie App/style.css
3 Views
0 Comments
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

:root {
--clr-primary: #080708;
--clr-secondary: #3772ff;
}
* {
margin: 0;
index.html cody/vishal-dcode/Movie App/index.html
9 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link